home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / ada_tutr.zip / HELLO.ADA < prev    next >
Text File  |  1991-03-25  |  91b  |  6 lines

  1. with TEXT_IO; use TEXT_IO;
  2. procedure HELLO is
  3. begin
  4.    PUT_LINE("Hello!");
  5. end HELLO;
  6.